home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002014A < prev    next >
Text File  |  1992-06-02  |  248b  |  16 lines

  1.  
  2. Listing 1 -- the file remove.c
  3.  
  4.  
  5. /* remove function -- UNIX version */
  6. #include "xstdio.h"
  7.  
  8.         /* UNIX system call */
  9. int _Unlink(const char *);
  10.  
  11. int (remove)(const char *fname)
  12.     {   /* remove a file */
  13.     return (_Unlink(fname));
  14.     }
  15.  
  16.